home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 52
/
Volume 52 - JOGO DISK .iso
/
Games
/
rockpaper.swf
/
scripts
/
DefineSprite_141
/
frame_128
/
DoAction.as
Wrap
Text File
|
2007-09-27
|
493b
|
22 lines
var theThrow;
if(this.isPlayer)
{
if(appRoot.interface_mc.currentSelection == undefined)
{
theThrow = "r";
}
else
{
theThrow = appRoot.interface_mc.currentSelection;
}
trace("the player\'s throw: " + theThrow);
appRoot.session.currentThrow.playerThrow = theThrow;
hand_mc.gotoAndPlay(theThrow);
}
else
{
theThrow = appRoot.cpuChooseThrow();
hand_mc.gotoAndPlay(theThrow);
appRoot.session.currentThrow.cpuThrow = theThrow;
}